home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / pluginy Firefox / 138 / 138.xpi / chrome / stumbleupon.jar / content / signinDialog.xul < prev    next >
Extensible Markup Language  |  2009-05-22  |  1KB  |  61 lines

  1. <?xml version="1.0"?>
  2.  
  3. <?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
  4.  
  5. <!DOCTYPE window SYSTEM "chrome://stumbleupon/locale/stumbleupon.dtd" >
  6.  
  7. <dialog id="stumble_signin_dialog" title="StumbleUpon Sign-in"
  8.   xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
  9.   buttons="accept,cancel,extra1"
  10.   ondialogaccept="return doOK();"
  11.   ondialogcancel="return doCancel();"
  12.   onload="init()">
  13.  
  14. <stringbundleset id="stringbundleset">
  15.     <stringbundle id="bundle_stumble" src="chrome://stumbleupon/locale/stumbleupon.properties"/>
  16. </stringbundleset>
  17.  
  18. <script type="application/x-javascript" src="signinDialog.js"/>
  19.  
  20. <spacer height="10px"/>
  21. <grid flex="1">
  22.   <columns>
  23.     <column flex="2"/>
  24.     <column flex="1"/>
  25.   </columns>
  26.  
  27.   <rows>
  28.     <row>
  29.     <vbox align="right">
  30.             <spacer flex="1"/>
  31.             <label control="username" value="Nickname, E-mail or ID:"/>
  32.             <spacer flex="1"/>
  33.     </vbox>
  34.     <textbox id="username"
  35.             type="timed"
  36.             timeout="20"
  37.             maxlength="64"
  38.             oncommand="handle_username_command(this)"/>
  39.     </row>
  40.     <row>
  41.     <vbox align="right">
  42.            <spacer flex="1"/>
  43.               <label control="password" value="Password:"/>
  44.                 <spacer flex="1"/>
  45.       </vbox>
  46.     <textbox id="password"
  47.             type="password"
  48.             maxlength="16"/>
  49.     </row>
  50.   </rows>
  51. </grid>
  52. <spacer height="5px"/>
  53. <hbox>
  54.     <spacer flex="1"/>
  55.     <checkbox id="autologout"
  56.         label="Sign-out when I close the browser"
  57.         checked="false"/>
  58. </hbox>
  59. <spacer height="10px"/>
  60. </dialog>
  61.